crypto/sha1.digest.h (field)

33 uses

	crypto/sha1 (current package)
		sha1.go#L41: 	h   [5]uint32
		sha1.go#L58: 	b = byteorder.BEAppendUint32(b, d.h[0])
		sha1.go#L59: 	b = byteorder.BEAppendUint32(b, d.h[1])
		sha1.go#L60: 	b = byteorder.BEAppendUint32(b, d.h[2])
		sha1.go#L61: 	b = byteorder.BEAppendUint32(b, d.h[3])
		sha1.go#L62: 	b = byteorder.BEAppendUint32(b, d.h[4])
		sha1.go#L77: 	b, d.h[0] = consumeUint32(b)
		sha1.go#L78: 	b, d.h[1] = consumeUint32(b)
		sha1.go#L79: 	b, d.h[2] = consumeUint32(b)
		sha1.go#L80: 	b, d.h[3] = consumeUint32(b)
		sha1.go#L81: 	b, d.h[4] = consumeUint32(b)
		sha1.go#L102: 	d.h[0] = init0
		sha1.go#L103: 	d.h[1] = init1
		sha1.go#L104: 	d.h[2] = init2
		sha1.go#L105: 	d.h[3] = init3
		sha1.go#L106: 	d.h[4] = init4
		sha1.go#L191: 	byteorder.BEPutUint32(digest[0:], d.h[0])
		sha1.go#L192: 	byteorder.BEPutUint32(digest[4:], d.h[1])
		sha1.go#L193: 	byteorder.BEPutUint32(digest[8:], d.h[2])
		sha1.go#L194: 	byteorder.BEPutUint32(digest[12:], d.h[3])
		sha1.go#L195: 	byteorder.BEPutUint32(digest[16:], d.h[4])
		sha1.go#L242: 	for i, s := range d.h {
		sha1.go#L262: 	for i, s := range d.h {
		sha1block.go#L23: 	h0, h1, h2, h3, h4 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4]
		sha1block.go#L82: 	dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4] = h0, h1, h2, h3, h4